home *** CD-ROM | disk | FTP | other *** search
- /** runbbs.rexx
- *
- * Script to run FifoBBS. You probably want to change this.
- * This script relies on WShell.
- *
- **/
- address COMMAND
- /*
- * Run VLT as a BBS program
- */
- "run vlt:vlt +p VTPrefsBBS.dat"
- /*
- * Wait until VLT is up
- */
- do i = 1 to 150
- if ~showlist('p',"VLT") then call delay 25
- else leave i
- end
- /*
- * Now run the BBS program itself.
- */
- "run FifoBBS remote"
-
- exit(0)
-
-